home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 2 / Meeting Pearls Vol. II (1995)(GTI - Schatztruhe)[!].iso / Pearls / gfx / pbm / source / jpegV5.lha / jpegV5 / src / jmemname.c < prev    next >
C/C++ Source or Header  |  1994-12-23  |  7KB  |  249 lines

  1. /*
  2.  * jmemname.c
  3.  *
  4.  * Copyright (C) 1992-1994, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This file provides a generic implementation of the system-dependent
  9.  * portion of the JPEG memory manager.  This implementation assumes that
  10.  * you must explicitly construct a name for each temp file.
  11.  * Also, the problem of determining the amount of memory available
  12.  * is shoved onto the user.
  13.  */
  14.  
  15. #define JPEG_INTERNALS
  16. #include "jinclude.h"
  17. #include "jpeglib.h"
  18. #include "jmemsys.h"        /* import the system-dependent declarations */
  19.  
  20. #ifndef HAVE_STDLIB_H        /* <stdlib.h> should declare malloc(),free() */
  21. extern void * malloc JPP((size_t size));
  22. extern void free JPP((void *ptr));
  23. #endif
  24.  
  25. #ifndef SEEK_SET        /* pre-ANSI systems may not define this; */
  26. #define SEEK_SET  0        /* if not, assume 0 is correct */
  27. #endif
  28.  
  29. #ifdef DONT_USE_B_MODE        /* define mode parameters for fopen() */
  30. #define READ_BINARY    "r"
  31. #define RW_BINARY    "w+"
  32. #else
  33. #define READ_BINARY    "rb"
  34. #define RW_BINARY    "w+b"
  35. #endif
  36.  
  37.  
  38. /*
  39.  * Selection of a file name for a temporary file.
  40.  * This is system-dependent!
  41.  *
  42.  * The code as given is suitable for most Unix systems, and it is easily
  43.  * modified for most non-Unix systems.  Some notes:
  44.  *  1.  The temp file is created in the directory named by TEMP_DIRECTORY.
  45.  *      The default value is /usr/tmp, which is the conventional place for
  46.  *      creating large temp files on Unix.  On other systems you'll probably
  47.  *      want to change the file location.  You can do this by editing the
  48.  *      #define, or (preferred) by defining TEMP_DIRECTORY in jconfig.h.
  49.  *
  50.  *  2.  If you need to change the file name as well as its location,
  51.  *      you can override the TEMP_FILE_NAME macro.  (Note that this is
  52.  *      actually a printf format string; it must contain %s and %d.)
  53.  *      Few people should need to do this.
  54.  *
  55.  *  3.  mktemp() is used to ensure that multiple processes running
  56.  *      simultaneously won't select the same file names.  If your system
  57.  *      doesn't have mktemp(), define NO_MKTEMP to do it the hard way.
  58.  *
  59.  *  4.  You probably want to define NEED_SIGNAL_CATCHER so that cjpeg.c/djpeg.c
  60.  *      will cause the temp files to be removed if you stop the program early.
  61.  */
  62.  
  63. #ifndef TEMP_DIRECTORY        /* can override from jconfig.h or Makefile */
  64. #define TEMP_DIRECTORY  "/usr/tmp/" /* recommended setting for Unix */
  65. #endif
  66.  
  67. static int next_file_num;    /* to distinguish among several temp files */
  68.  
  69. #ifdef NO_MKTEMP
  70.  
  71. #ifndef TEMP_FILE_NAME        /* can override from jconfig.h or Makefile */
  72. #define TEMP_FILE_NAME  "%sJPG%03d.TMP"
  73. #endif
  74.  
  75. LOCAL void
  76. select_file_name (char * fname)
  77. {
  78.   FILE * tfile;
  79.  
  80.   /* Keep generating file names till we find one that's not in use */
  81.   for (;;) {
  82.     next_file_num++;        /* advance counter */
  83.     sprintf(fname, TEMP_FILE_NAME, TEMP_DIRECTORY, next_file_num);
  84.     if ((tfile = fopen(fname, READ_BINARY)) == NULL)
  85.       break;
  86.     fclose(tfile);        /* oops, it's there; close tfile & try again */
  87.   }
  88. }
  89.  
  90. #else /* ! NO_MKTEMP */
  91.  
  92. /* Note that mktemp() requires the initial filename to end in six X's */
  93. #ifndef TEMP_FILE_NAME        /* can override from jconfig.h or Makefile */
  94. #define TEMP_FILE_NAME  "%sJPG%dXXXXXX"
  95. #endif
  96.  
  97. LOCAL void
  98. select_file_name (char * fname)
  99. {
  100.   next_file_num++;        /* advance counter */
  101.   sprintf(fname, TEMP_FILE_NAME, TEMP_DIRECTORY, next_file_num);
  102.   mktemp(fname);        /* make sure file name is unique */
  103.   /* mktemp replaces the trailing XXXXXX with a unique string of characters */
  104. }
  105.  
  106. #endif /* NO_MKTEMP */
  107.  
  108.  
  109. /*
  110.  * Memory allocation and freeing are controlled by the regular library
  111.  * routines malloc() and free().
  112.  */
  113.  
  114. GLOBAL void *
  115. jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject)
  116. {
  117.   return (void *) malloc(sizeofobject);
  118. }
  119.  
  120. GLOBAL void
  121. jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject)
  122. {
  123.   free(object);
  124. }
  125.  
  126.  
  127. /*
  128.  * "Large" objects are treated the same as "small" ones.
  129.  * NB: although we include FAR keywords in the routine declarations,
  130.  * this file won't actually work in 80x86 small/medium model; at least,
  131.  * you probably won't be able to process useful-size images in only 64KB.
  132.  */
  133.  
  134. GLOBAL void FAR *
  135. jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject)
  136. {
  137.   return (void FAR *) malloc(sizeofobject);
  138. }
  139.  
  140. GLOBAL void
  141. jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject)
  142. {
  143.   free(object);
  144. }
  145.  
  146.  
  147. /*
  148.  * This routine computes the total memory space available for allocation.
  149.  * It's impossible to do this in a portable way; our current solution is
  150.  * to make the user tell us (with a default value set at compile time).
  151.  * If you can actually get the available space, it's a good idea to subtract
  152.  * a slop factor of 5% or so.
  153.  */
  154.  
  155. #ifndef DEFAULT_MAX_MEM        /* so can override from makefile */
  156. #define DEFAULT_MAX_MEM        1000000L /* default: one megabyte */
  157. #endif
  158.  
  159. GLOBAL long
  160. jpeg_mem_available (j_common_ptr cinfo, long min_bytes_needed,
  161.             long max_bytes_needed, long already_allocated)
  162. {
  163.   return cinfo->mem->max_memory_to_use - already_allocated;
  164. }
  165.  
  166.  
  167. /*
  168.  * Backing store (temporary file) management.
  169.  * Backing store objects are only used when the value returned by
  170.  * jpeg_mem_available is less than the total space needed.  You can dispense
  171.  * with these routines if you have plenty of virtual memory; see jmemnobs.c.
  172.  */
  173.  
  174.  
  175. METHODDEF void
  176. read_backing_store (j_common_ptr cinfo, backing_store_ptr info,
  177.             void FAR * buffer_address,
  178.             long file_offset, long byte_count)
  179. {
  180.   if (fseek(info->temp_file, file_offset, SEEK_SET))
  181.     ERREXIT(cinfo, JERR_TFILE_SEEK);
  182.   if (JFREAD(info->temp_file, buffer_address, byte_count)
  183.       != (size_t) byte_count)
  184.     ERREXIT(cinfo, JERR_TFILE_READ);
  185. }
  186.  
  187.  
  188. METHODDEF void
  189. write_backing_store (j_common_ptr cinfo, backing_store_ptr info,
  190.              void FAR * buffer_address,
  191.              long file_offset, long byte_count)
  192. {
  193.   if (fseek(info->temp_file, file_offset, SEEK_SET))
  194.     ERREXIT(cinfo, JERR_TFILE_SEEK);
  195.   if (JFWRITE(info->temp_file, buffer_address, byte_count)
  196.       != (size_t) byte_count)
  197.     ERREXIT(cinfo, JERR_TFILE_WRITE);
  198. }
  199.  
  200.  
  201. METHODDEF void
  202. close_backing_store (j_common_ptr cinfo, backing_store_ptr info)
  203. {
  204.   fclose(info->temp_file);    /* close the file */
  205.   unlink(info->temp_name);    /* delete the file */
  206. /* If your system doesn't have unlink(), use remove() instead.
  207.  * remove() is the ANSI-standard name for this function, but if
  208.  * your system was ANSI you'd be using jmemansi.c, right?
  209.  */
  210.   TRACEMSS(cinfo, 1, JTRC_TFILE_CLOSE, info->temp_name);
  211. }
  212.  
  213.  
  214. /*
  215.  * Initial opening of a backing-store object.
  216.  */
  217.  
  218. GLOBAL void
  219. jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
  220.              long total_bytes_needed)
  221. {
  222.   select_file_name(info->temp_name);
  223.   if ((info->temp_file = fopen(info->temp_name, RW_BINARY)) == NULL)
  224.     ERREXITS(cinfo, JERR_TFILE_CREATE, info->temp_name);
  225.   info->read_backing_store = read_backing_store;
  226.   info->write_backing_store = write_backing_store;
  227.   info->close_backing_store = close_backing_store;
  228.   TRACEMSS(cinfo, 1, JTRC_TFILE_OPEN, info->temp_name);
  229. }
  230.  
  231.  
  232. /*
  233.  * These routines take care of any system-dependent initialization and
  234.  * cleanup required.
  235.  */
  236.  
  237. GLOBAL long
  238. jpeg_mem_init (j_common_ptr cinfo)
  239. {
  240.   next_file_num = 0;        /* initialize temp file name generator */
  241.   return DEFAULT_MAX_MEM;    /* default for max_memory_to_use */
  242. }
  243.  
  244. GLOBAL void
  245. jpeg_mem_term (j_common_ptr cinfo)
  246. {
  247.   /* no work */
  248. }
  249.